<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 | 
*/

.slider {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}
/*鐩掑瓙甯﹀鍣�*/
.slides {
	margin:0px; padding:0px;
	height: auto;
	/* Simple clear fix */
	overflow: hidden;
	/**	
		 * Prevent blinking issue
		 * Not tested. Experimental.
		 */
	-webkit-backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	/**
		 * Here is CSS transitions 
		 * responsible for slider animation in modern broswers
		 */
	-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.slide {
	height: auto;
	float: left;
	clear: none;
}
.slide img{width:100%; height:auto !important;}
.slider-arrows {
}
.slider-arrow {
	position: absolute;
	display: block;
	margin-bottom: -20px;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-decoration: none;
	text-align: center;
	color: #fff;
	font-size: 2em;
	background-color: #333;
	background-color: rgba(50,50,50,.3);
	border-radius: 50%;
}/*宸﹀彸鎸夐挳鏍峰紡鍙婃斁缃綅缃�*/
.slider-arrow--right {
	bottom: 50%;
	right: 30px;
	 display:none;
	/*background:url(../images/right_btn.png) right center no-repeat;*/
}
.slider-arrow--left {
	bottom: 50%;
	left: 30px;
	 display:none;
	/*background:url(../images/left_btn.png) left center no-repeat;*/
}
/*
background:url(img/.png) no-repeat;
*/

.slider-nav {
	position: absolute;
	bottom: 25px;
}
.slider-nav__item {  /*nva鏍峰紡*/
	width: 14px;
	height: 14px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	border:0px;
	background:url(../images/y2.png) no-repeat;
	border-radius: 100%;
}
.slider-nav__item:hover {
	background:url(../images/y1.png) no-repeat;
}
.slider-nav__item--current{
	background:url(../images/y1.png) no-repeat;
} /*琚€変腑鍚庣殑鏍峰紡*/


/*.nslider .slider-nav__item {
	width: 14px;
	height: 14px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	border:0px;
	background:url(../images/y2.png) no-repeat;
	border-radius: 100%;
}
.nslider .slider-nav__item:hover {
	background:url(../images/y1.png) no-repeat;
}
.nslider .slider-nav__item--current{
	background:url(../images/y1.png) no-repeat;
}*/ 
</pre></body></html>